summaryrefslogtreecommitdiffstats
path: root/install.cpp
diff options
context:
space:
mode:
authorTao Bao <tbao@google.com>2017-02-03 22:09:23 +0100
committerTao Bao <tbao@google.com>2017-02-03 23:11:11 +0100
commit3da880156b4a56a6af5065ac10dfd6833cdcb1d4 (patch)
tree9f4ecbd604bd914dbc0725b3babc7781f5ec8957 /install.cpp
parentMerge "Avoid to call UI functions in child process" (diff)
downloadandroid_bootable_recovery-3da880156b4a56a6af5065ac10dfd6833cdcb1d4.tar
android_bootable_recovery-3da880156b4a56a6af5065ac10dfd6833cdcb1d4.tar.gz
android_bootable_recovery-3da880156b4a56a6af5065ac10dfd6833cdcb1d4.tar.bz2
android_bootable_recovery-3da880156b4a56a6af5065ac10dfd6833cdcb1d4.tar.lz
android_bootable_recovery-3da880156b4a56a6af5065ac10dfd6833cdcb1d4.tar.xz
android_bootable_recovery-3da880156b4a56a6af5065ac10dfd6833cdcb1d4.tar.zst
android_bootable_recovery-3da880156b4a56a6af5065ac10dfd6833cdcb1d4.zip
Diffstat (limited to 'install.cpp')
-rw-r--r--install.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/install.cpp b/install.cpp
index 91e4875cb..ce89e0dc0 100644
--- a/install.cpp
+++ b/install.cpp
@@ -387,7 +387,7 @@ static int try_update_binary(const char* path, ZipArchiveHandle zip, bool* wipe_
// the child process to hang. This deadlock results from an improperly
// copied mutex in the ui functions.
fprintf(stdout, "E:Can't run %s (%s)\n", chr_args[0], strerror(errno));
- _exit(-1);
+ _exit(EXIT_FAILURE);
}
close(pipefd[1]);